home *** CD-ROM | disk | FTP | other *** search
- /* -*- Mode: javascript; tab-width: 20; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
- /* ***** BEGIN LICENSE BLOCK *****
- * Version: MPL 1.1/GPL 2.0/LGPL 2.1
- *
- * The contents of this file are subject to the Mozilla Public License Version
- * 1.1 (the "License"); you may not use this file except in compliance with
- * the License. You may obtain a copy of the License at
- * http://www.mozilla.org/MPL/
- *
- * Software distributed under the License is distributed on an "AS IS" basis,
- * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
- * for the specific language governing rights and limitations under the
- * License.
- *
- * The Original Code is Lightning code.
- *
- * The Initial Developer of the Original Code is Oracle Corporation
- * Portions created by the Initial Developer are Copyright (C) 2005
- * the Initial Developer. All Rights Reserved.
- *
- * Contributor(s):
- * Mike Shaver <shaver@mozilla.org>
- * Clint Talbert <ctalbert.moz@gmail.com>
- * Matthew Willis <lilmatt@mozilla.com>
- * Mauro Cicognini <mcicogni@libero.it>
- *
- * Alternatively, the contents of this file may be used under the terms of
- * either the GNU General Public License Version 2 or later (the "GPL"), or
- * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
- * in which case the provisions of the GPL or the LGPL are applicable instead
- * of those above. If you wish to allow use of your version of this file only
- * under the terms of either the GPL or the LGPL, and not to allow others to
- * use your version of this file under the terms of the MPL, indicate your
- * decision by deleting the provisions above and replace them with the notice
- * and other provisions required by the GPL or the LGPL. If you do not delete
- * the provisions above, a recipient may use your version of this file under
- * the terms of any one of the MPL, the GPL or the LGPL.
- *
- * ***** END LICENSE BLOCK ***** */
-
- function makeTableRow(val) {
- return "<tr><td>" + val[0] + "</td><td>" + val[1] + "</td></tr>\n";
- }
-
- function getLightningStringBundle()
- {
- var svc = Components.classes["@mozilla.org/intl/stringbundle;1"].
- getService(Components.interfaces.nsIStringBundleService);
- return svc.createBundle("chrome://lightning/locale/lightning.properties");
- }
-
- function createHtmlTableSection(label, text)
- {
- var tblRow = <tr>
- <td class="description">
- <p>{label}</p>
- </td>
- <td class="content">
- <p>{text}</p>
- </td>
- </tr>;
- return tblRow;
- }
-
- function createHtml(event)
- {
- // Creates HTML using the Node strings in the properties file
- var stringBundle = getLightningStringBundle();
- var html;
- if (stringBundle) {
- // Using e4x javascript support here
- html =
- <html>
- <head>
- <meta http-equiv='Content-Type' content='text/html; charset=utf-8'/>
- <link rel='stylesheet' type='text/css' href='chrome://lightning/skin/imip.css'/>
- </head>
- <body>
- <table>
- </table>
- </body>
- </html>;
- // Create header row
- var labelText = stringBundle.GetStringFromName("imipHtml.header");
- html.body.table.appendChild(
- <tr>
- <td colspan="3" class="header">
- <p class="header">{labelText}</p>
- </td>
- </tr>
- );
- if (event.title) {
- labelText = stringBundle.GetStringFromName("imipHtml.summary");
- html.body.table.appendChild(createHtmlTableSection(labelText,
- event.title));
- }
-
- var eventLocation = event.getProperty("LOCATION");
- if (eventLocation) {
- labelText = stringBundle.GetStringFromName("imipHtml.location");
- html.body.table.appendChild(createHtmlTableSection(labelText,
- eventLocation));
- }
-
- var dateFormatter = Components.classes["@mozilla.org/calendar/datetime-formatter;1"]
- .getService(Components.interfaces.calIDateTimeFormatter);
- var startString = new Object();
- var endString = new Object();
- dateFormatter.formatInterval(event.startDate.getInTimezone(calendarDefaultTimezone()),
- event.endDate.getInTimezone(calendarDefaultTimezone()),
- startString, endString);
- var dateString = startString.value + " - " + endString.value;
-
- var labelText = stringBundle.GetStringFromName("imipHtml.when");
- html.body.table.appendChild(createHtmlTableSection(labelText,
- dateString));
-
- if (event.organizer &&
- (event.organizer.commonName || event.organizer.id))
- {
- labelText = stringBundle.GetStringFromName("imipHtml.organizer");
- // Trim any instances of "mailto:" for better readibility.
- var orgname = event.organizer.commonName ||
- event.organizer.id.replace(/mailto:/ig, "");
- html.body.table.appendChild(createHtmlTableSection(labelText, orgname));
- }
-
- var eventDescription = event.getProperty("DESCRIPTION");
- if (eventDescription) {
- // Remove the useless "Outlookism" squiggle.
- var desc = eventDescription.replace("*~*~*~*~*~*~*~*~*~*", "");
-
- labelText = stringBundle.GetStringFromName("imipHtml.description");
- html.body.table.appendChild(createHtmlTableSection(labelText,desc));
- }
-
- var eventComment = event.getProperty("COMMENT");
- if (eventComment) {
- labelText = stringBundle.GetStringFromName("imipHtml.Comment");
- html.body.table.appendChild(createHtmlTableSection(labelText,eventComment));
- }
- }
-
- return html;
- }
-
- function ltnMimeConverter() { }
-
- ltnMimeConverter.prototype = {
- QueryInterface: function QI(aIID) {
- if (!aIID.equals(Components.interfaces.nsISupports) &&
- !aIID.equals(Components.interfaces.nsISimpleMimeConverter))
- {
- throw Components.results.NS_ERROR_NO_INTERFACE;
- }
-
- return this;
- },
-
- mUri: null,
- get uri() {
- return this.mUri;
- },
- set uri(aUri) {
- return (this.mUri = aUri);
- },
-
- convertToHTML: function lmcCTH(contentType, data) {
- var event = Components.classes["@mozilla.org/calendar/event;1"].
- createInstance(Components.interfaces.calIEvent);
- event.icalString = data;
- var html = createHtml(event);
-
- try {
- var itipItem = Components.classes["@mozilla.org/calendar/itip-item;1"].
- createInstance(Components.interfaces.calIItipItem);
- itipItem.init(data);
-
- // this.mUri is the message URL that we are processing.
- // We use it to get the nsMsgHeaderSink to store the calItipItem.
- if (this.mUri) {
- var msgUrl = this.mUri.QueryInterface(Components.interfaces.nsIMsgMailNewsUrl);
- var sinkProps = msgUrl.msgWindow.msgHeaderSink.properties;
- sinkProps.setPropertyAsInterface("itipItem", itipItem);
-
- // Notify the observer that the itipItem is available
- var observer = Components.classes["@mozilla.org/observer-service;1"].
- getService(Components.interfaces.nsIObserverService);
- observer.notifyObservers(null, "onItipItemCreation", 0);
- } else {
- // Thunderbird 1.5.x case: We have no choice but to try
- // sending the iTIP item directly with the notification
- var observer = Components.classes["@mozilla.org/observer-service;1"].
- getService(Components.interfaces.nsIObserverService);
- observer.notifyObservers(itipItem, "onItipItemCreation", 0);
- }
-
- } catch (e) {
- Components.utils.reportError("convertToHTML: " +
- "Cannot create itipItem: " + e);
- }
-
- return html;
- }
- };
-
- var myModule = {
- registerSelf: function RS(aCompMgr, aFileSpec, aLocation, aType) {
- debug("*** Registering Lightning text/calendar handler\n");
- var compMgr = aCompMgr.QueryInterface(Components.interfaces.nsIComponentRegistrar);
- compMgr.registerFactoryLocation(this.myCID,
- "Lightning text/calendar handler",
- this.myContractID,
- aFileSpec,
- aLocation,
- aType);
-
- var catman = Components.classes["@mozilla.org/categorymanager;1"]
- .getService(Components.interfaces.nsICategoryManager);
-
- catman.addCategoryEntry("simple-mime-converters", "text/calendar",
- this.myContractID, true, true);
- },
-
- mScriptsLoaded: false,
- getClassObject: function GCO(aCompMgr, aCid, aIid) {
- if (!this.mScriptsLoaded) {
- // loading extra scripts from ../js:
- const scripts = [ "calUtils.js" ];
- var scriptLoader = Components.classes["@mozilla.org/moz/jssubscript-loader;1"]
- .createInstance(Components.interfaces.mozIJSSubScriptLoader);
- var ioService = Components.classes["@mozilla.org/network/io-service;1"]
- .getService(Components.interfaces.nsIIOService);
- var baseDir = __LOCATION__.parent.parent;
- baseDir.append("js");
- for each (var script in scripts) {
- var scriptFile = baseDir.clone();
- scriptFile.append(script);
- scriptLoader.loadSubScript(ioService.newFileURI(scriptFile).spec, null);
- }
- this.mScriptsLoaded = true;
- }
-
- if (!aCid.equals(this.myCID)) {
- throw Components.results.NS_ERROR_NO_INTERFACE;
- }
- if (!aIid.equals(Components.interfaces.nsIFactory)) {
- throw Components.results.NS_ERROR_NOT_IMPLEMENTED;
- }
- return this.myFactory;
- },
-
- myCID: Components.ID("{c70acb08-464e-4e55-899d-b2c84c5409fa}"),
-
- myContractID: "@mozilla.org/lightning/mime-converter;1",
-
- myFactory: {
- createInstance: function mfCI(aOuter, aIid) {
- if (aOuter != null) {
- throw Components.results.NS_ERROR_NO_AGGREGATION;
- }
- return (new ltnMimeConverter()).QueryInterface(aIid);
- }
- },
-
- canUnload: function CU(aCompMgr) {
- return true;
- }
- };
-
- function NSGetModule(compMgr, fileSpec) {
- return myModule;
- }
-